LISP programming language - перевод на немецкий
Diclib.com
Словарь онлайн

LISP programming language - перевод на немецкий

FUNCTIONAL PROGRAMMING LANGUAGE BASED ON THE LAMBDA CALCULUS
LISP programming language; Lisp computer language; Lisp atom; Lisp language; LISP language; LISP (programming language); LISP atom; Lisp programming language; LISP (programming); Lisp (programming); Programmable programming language; Lisp renaissance; LISP 1.5; Lisp 1.5; Lithp (programming language); Defun; List Processing; LISP; List processing language; Lisp (language); MuLISP; Lots of Irritating Superfluous Parentheses; Lisp operators; History of the Lisp programming language; Lambde expressions in Lisp; Control structures in Lisp; Object systems in Lisp
  • 4.3 BSD]] from the [[University of Wisconsin]], displaying the [[man page]] for [[Franz Lisp]]
  • pointer]] diagram for the list (42 69 613)
  • A [[Lisp machine]] in the [[MIT Museum]]

LISP programming language         
Sprache zur Textverarbeitung
list processing language         
(Computer) Sprache die Dateien bearbeitet
programming language         
  • A small selection of programming language textbooks
  • Python code]] with inset tokenization
  • Python]].
LANGUAGE FOR COMMUNICATING INSTRUCTIONS TO A MACHINE
ProgrammingLanguages; ProgrammingLanguage; Computer programming language; Programming languages; Programming Languages; Typed and untyped languages; Programming Language; Dialect (computing); Pattern directed invocation programming language; Programming language design; Dialecting; Computer-oriented language; Untyped language; Programming language dialect; Static semantics; Execution semantics; Proprietary programming language; Proprietary scripting language; Proglang; Research programming language; Untyped programming language
Programmierungssprache

Определение

LISP 1.5
The second version of Lisp, successor to LISP 1. Developed at MIT in 1959. Followed by LISP 1.75, LISP 1.9, Lisp 2 and many other versions.

Википедия

Lisp (programming language)

Lisp (historically LISP, an acronym for list processing) is a family of programming languages with a long history and a distinctive, fully parenthesized prefix notation. Originally specified in 1960, Lisp is the second-oldest high-level programming language still in common use, after Fortran. Lisp has changed since its early days, and many dialects have existed over its history. Today, the best-known general-purpose Lisp dialects are Common Lisp, Scheme, Racket and Clojure.

Lisp was originally created as a practical mathematical notation for computer programs, influenced by (though not originally derived from) the notation of Alonzo Church's lambda calculus. It quickly became a favored programming language for artificial intelligence (AI) research. As one of the earliest programming languages, Lisp pioneered many ideas in computer science, including tree data structures, automatic storage management, dynamic typing, conditionals, higher-order functions, recursion, the self-hosting compiler, and the read–eval–print loop.

The name LISP derives from "LISt Processor". Linked lists are one of Lisp's major data structures, and Lisp source code is made of lists. Thus, Lisp programs can manipulate source code as a data structure, giving rise to the macro systems that allow programmers to create new syntax or new domain-specific languages embedded in Lisp.

The interchangeability of code and data gives Lisp its instantly recognizable syntax. All program code is written as s-expressions, or parenthesized lists. A function call or syntactic form is written as a list with the function or operator's name first, and the arguments following; for instance, a function f that takes three arguments would be called as (f arg1 arg2 arg3).